home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / BOOPSI / led_ic / classbase.i < prev    next >
Encoding:
Text File  |  1994-03-30  |  873 b   |  40 lines

  1.     IFND CLASSBASE_I
  2. CLASSBASE_I SET    1
  3.  
  4. ;-----------------------------------------------------------------------
  5.  
  6.     INCLUDE "exec/types.i"
  7.     INCLUDE "exec/libraries.i"
  8.     INCLUDE "intuition/classes.i"
  9.  
  10. ;-----------------------------------------------------------------------
  11.  
  12.    STRUCTURE ClassLib,0
  13.     STRUCT    cb_ClassLibrary,ClassLibrary_SIZEOF
  14.         UWORD    cb_Pad
  15.     ULONG    cb_SysBase
  16.     ULONG   cb_UtilityBase
  17.     ULONG    cb_IntuitionBase
  18.     ULONG    cb_GfxBase
  19.     ULONG    cb_SegList
  20.  
  21.    LABEL ClassLib_SIZEOF
  22.  
  23. ;-----------------------------------------------------------------------
  24.  
  25. CALL MACRO <Function_Name>
  26.     xref _LVO\1
  27.      jsr _LVO\1(A6)
  28.      ENDM
  29.  
  30. ;---------------------------------------------------------------------------
  31.  
  32. GO   MACRO <Function_Name>
  33.     xref _LVO\1
  34.      jmp _LVO\1(A6)
  35.      ENDM
  36.  
  37. ;---------------------------------------------------------------------------
  38.  
  39.     ENDC    ; CLASSBASE_I
  40.